runtime.mheap.allArenas (field)

19 uses

	runtime (current package)
		malloc.go#L761: 		if len(h.allArenas) == cap(h.allArenas) {
		malloc.go#L762: 			size := 2 * uintptr(cap(h.allArenas)) * goarch.PtrSize
		malloc.go#L770: 			oldSlice := h.allArenas
		malloc.go#L771: 			*(*notInHeapSlice)(unsafe.Pointer(&h.allArenas)) = notInHeapSlice{newArray, len(h.allArenas), int(size / goarch.PtrSize)}
		malloc.go#L772: 			copy(h.allArenas, oldSlice)
		malloc.go#L778: 		h.allArenas = h.allArenas[:len(h.allArenas)+1]
		malloc.go#L779: 		h.allArenas[len(h.allArenas)-1] = ri
		mcheckmark.go#L40: 	for _, ai := range mheap_.allArenas {
		mgc.go#L1464: 	mheap_.sweepArenas = mheap_.allArenas
		mgc.go#L1523: 	arenas := mheap_.allArenas
		mgcmark.go#L96: 	mheap_.markArenas = mheap_.allArenas[:len(mheap_.allArenas):len(mheap_.allArenas)]
		mheap.go#L178: 	allArenas []arenaIdx